home *** CD-ROM | disk | FTP | other *** search
- #ifndef SYS_DIR_H
- #define SYS_DIR_H
-
- /*
- ** $VER: sys/dir.h 1.1 (18.09.98)
- ** Includes Release 44.10
- **
- ** Copyright © 1996/98 by CyberdyneSystems
- **
- ** written by Matthias Henze
- ** All Rights Reserved
- */
-
- #ifndef DIRENT_H
- #include <dirent.h>
- #endif
-
- /* backwards compatibility */
- #define direct dirent
-
- #undef DIRSIZ
- #define DIRSIZ(dp) ((sizeof (struct direct) - (MAXNAMLEN+1)) + (((dp)->d_namlen+1 + 3) &~ 3))
-
- #endif /* SYS_DIR_H */
-
-